home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 4.9 KB | 142 lines | [TEXT/ScoM] |
- i have many algorithms that i would like to explore that are not
- expressible in terms of strings of symbols and lengths, but would
- better be expressed as a list of midi events themselves. i realize
- that this would totally bypass your convenient tonality/zone stuff,
- but i still think it's worth exploring.
-
- the reason why i want to break away from the existing paradigm is
- because my algorithms are multi-valued functions. there are more
- than one event occurring at the same start time, and they all might
- have different end times, and velocities. i just don't know how
- to express these things as strings of symbols and lengths.
-
- for example, here is a silly algorithm that i'd like to try, written
- in C pseudo-code (please don't think that my understanding of julia
- sets is so naive as to think that this algorithm is useful):
-
- // i is the time axis, traversed at .1 second intervals.
- for(i=0; i< 5; i += 0.1) {
- // j is the midi note number axis
- for(j=0; j< 127; j++) {
- if(isInJuliaSet(i/5.0,j/127.)) {
- note[numnotes].on = i;
- note[numnotes].off = i+0.1;
- note[numnotes].midinotenumber = j;
- note[numnotes].velocity = 100;
- numnotes++;
- }
- }
- }
-
- i realize that this is very procedural, rather than functional, programming.
- but the "note" array could be made into a list, and many SCOM functions could
- be performed on this new object (most of them would have to be extended to be
- performed on collections such as these).
-
- i just can't see how to write alogorithms like these under the current SCOM
- paradigm. if you have an easy way, i'm open to you educating me.
-
- > // i is the time axis, traversed at .1 second intervals.
- > for(i=0; i< 5; i += 0.1) {
- > // j is the midi note number axis
- > for(j=0; j< 127; j++) {
- > if(isInJuliaSet(i/5.0,j/127.)) {
- > note[numnotes].on = i;
- > note[numnotes].off = i+0.1;
- > note[numnotes].midinotenumber = j;
- > note[numnotes].velocity = 100;
- > numnotes++;
- > }
- > }
- > }
- >
-
- You can calculate multiple values and then push them into stacks,
- which you then reverse and return as multiple values. Now you can
- bind the values to instruments, and as they are separate you can
- process them further in the usual way.
-
- Here you define note, length, duration and velocity stacks. In the
- loops you push values to them. Note that here each note is 1/32
- length, you could as well calculate it and make it a length symbol with
- compress: (compress (list 2 '/ 16)). Same applies to duration.
- The note number is here directly converted to a symbol with
- integer-to-symbol.
-
- (defun julia-set ()
- (let ((note nil)
- (length nil)
- (duration nil)
- (velocity nil)
- (resolution 0.1))
- (dotimes (i (round (/ 5 resolution)))
- (dotimes (j 127)
- (when (is-in-juliaset (/ i (round (/ 5 resolution)))
- (/ j 127))
- (push '1/32 length)
- (push '1/32 duration)
- (push (integer-to-symbol j) note)
- (push 100 velocity))))
- (values (nreverse note)
- (nreverse length)
- (nreverse duration)
- (nreverse velocity))))
-
- you have to specify this function:
-
- (defun is-in-juliaset (x y)
- t)
-
- ;;;;;;;;; score example
-
- (defparameter symbol-pattern nil)
- (defparameter length-pattern nil)
- (defparameter duration-pattern nil)
- (defparameter velocity-pattern nil)
-
- ; now your julia-set returns symbols, lengths, durations and velocities
- ; the multiple-value-setq bounds the results to the symbol-pattern etc variables
-
- (multiple-value-setq (symbol-pattern length-pattern duration-pattern velocity-pattern)
- (julia-set))
-
- (def-orchestra 'orchestra
- all-instruments (julia1)
- )
-
- ; here you connect the calculated values from the variables to the section slots
-
- (def-section verse
- julia1
- channel 1
- zone (make-zone length-pattern)
- tonality (activate-tonality (chromatic c 0))
- length length-pattern
- duration duration-pattern
- symbol symbol-pattern
- velocity velocity-pattern
- )
-
- (midiport :printer)
-
- (def-tempo 120)
-
- (play-file-p nil
- all-instruments '(verse)
- )
-
- >i realize that this is very procedural, rather than functional, programming.
- >but the "note" array could be made into a list, and many SCOM functions could
- >be performed on this new object (most of them would have to be extended to be
- >performed on collections such as these).
-
- I suggest keeping them separate patterns like in the above, since
- otherwise you have to spend lots of time writing functions to support
- processing this new data structure. In once made a combined way to
- treat patterns called 'motives'. They are still part of the system and
- should work ok, but it takes time to make motive processors. The motives
- should be found in the more examples folder. You can try modifying
- the juliaset function to generate a motive with all the values, and
- then use the motive within def-section to define instrument values.
-
-